func reflect.stringFor

32 uses

	reflect (current package)
		map_swiss.go#L41: 		panic("reflect.MapOf: invalid key type " + stringFor(ktyp))
		map_swiss.go#L51: 	s := "map[" + stringFor(ktyp) + "]" + stringFor(etyp)
		type.go#L733: 	panic("reflect: Elem of invalid type " + stringFor(t))
		type.go#L1702: 			if !(stringFor(rtypeOff(section, offs[h])) >= s) {
		type.go#L1715: 			if stringFor(typ) != s {
		type.go#L1773: 		s = "chan<- " + stringFor(typ)
		type.go#L1775: 		s = "<-chan " + stringFor(typ)
		type.go#L1777: 		typeStr := stringFor(typ)
		type.go#L1931: func stringFor(t *abi.Type) string {
		type.go#L1945: 			repr = append(repr, stringFor((*sliceType)(unsafe.Pointer(t)).Elem)...)
		type.go#L1947: 			repr = append(repr, stringFor(t)...)
		type.go#L1961: 		repr = append(repr, stringFor(t)...)
		type.go#L1990: 		panic("isReflexive called on non-key type " + stringFor(t))
		type.go#L2017: 		panic("needKeyUpdate called on non-key type " + stringFor(t))
		type.go#L2070: 	s := "[]" + stringFor(typ)
		type.go#L2232: 					panic("reflect.StructOf: illegal embedded field type " + stringFor(ft))
		type.go#L2328: 		repr = append(repr, (" " + stringFor(ft))...)
		type.go#L2573: 		panic("reflect.typeptrdata: unexpected type, " + stringFor(t))
		type.go#L2596: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
		type.go#L2747: 		panic("reflect: funcLayout of non-func type " + stringFor(&t.Type))
		type.go#L2750: 		panic("reflect: funcLayout with interface receiver " + stringFor(rcvr))
		type.go#L2777: 		s = "methodargs(" + stringFor(rcvr) + ")(" + stringFor(&t.Type) + ")"
		type.go#L2779: 		s = "funcargs(" + stringFor(&t.Type) + ")"
		value.go#L440: 			panic("reflect: " + op + " using " + xt.String() + " as type " + stringFor(targ))
		value.go#L487: 		println("reflect.call", stringFor(&t.Type))
		value.go#L634: 					print("kind=", steps[0].kind, ", type=", stringFor(tv), "\n")
		value.go#L760: 					print("kind=", steps[0].kind, ", type=", stringFor(typ), "\n")
		value.go#L3072: 	panic(context + ": value of type " + stringFor(v.typ()) + " is not assignable to type " + stringFor(dst))
		value.go#L3084: 		panic("reflect.Value.Convert: value of type " + stringFor(v.typ()) + " cannot be converted to type " + t.String())